home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / hashcom.h < prev    next >
C/C++ Source or Header  |  1991-07-07  |  342b  |  14 lines

  1. /* hashcom.h - Common defines for hashing filenames. */
  2. #include "../hash.h"
  3.  
  4. #define FILENAME_HASH_BUCKETS 631
  5.  
  6. HASH_TABLE *hashed_filenames;
  7.  
  8. typedef struct {
  9.   char *path;        /* The full pathname of the file. */
  10.   int check_dot;    /* Whether `.' appeared before this one in $PATH. */
  11. } PATH_DATA;
  12.  
  13. #define pathdata(x) ((PATH_DATA *)(x)->data)
  14.